home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #1 / Cd 1 (black) - 2001.iso / K-CS.dcr / 00544_Drag'n'Move.ls < prev    next >
Encoding:
Text File  |  2000-11-15  |  1.2 KB  |  40 lines

  1. property startPos, StartX, StartY, DestX, DestY
  2.  
  3. on new me
  4.   set the visible of sprite the spriteNum of me to 1
  5.   set the visible of sprite (the spriteNum of me - 2) to 1
  6.   set StartX to the locH of sprite the spriteNum of me
  7.   set StartY to the locV of sprite the spriteNum of me
  8.   set DestX to the locH of sprite (the spriteNum of me - 2)
  9.   set DestY to the locV of sprite (the spriteNum of me - 2)
  10. end
  11.  
  12. on mouseDown me
  13.   repeat while the stillDown = 1
  14.     set X to the mouseH
  15.     set Y to the mouseV
  16.     if X > 289 then
  17.       set X to 289
  18.     end if
  19.     if X < 280 then
  20.       set X to 280
  21.     end if
  22.     if Y > 172 then
  23.       set Y to 172
  24.     end if
  25.     if Y < 165 then
  26.       set Y to 165
  27.     end if
  28.     set the loc of sprite the spriteNum of me to point(X, Y)
  29.     set the loc of sprite (the spriteNum of me - 2) to point(((X - StartX) * 10) + DestX, ((Y - StartY) * 10) + DestY)
  30.     updateStage()
  31.   end repeat
  32. end
  33.  
  34. on mouseUp me
  35. end
  36.  
  37. on getBehaviorDescription
  38.   return "Creates sprites that can be dropped on any other [user specified] sprite. You can define the target sprite, " && RETURN & "whether the dragged sprite snaps back to it's start position, and handlers to run if the drop was on or off target."
  39. end
  40.